home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1320
/
1320.xpi
/
chrome
/
gmanager.jar
/
content
/
options
/
options.xml
< prev
next >
Wrap
Extensible Markup Language
|
2010-01-22
|
1KB
|
55 lines
<?xml version="1.0" encoding="UTF-8"?>
<!--
Gmail Manager
By Todd Long <longfocus@gmail.com>
http://www.longfocus.com/firefox/gmanager/
-->
<bindings xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="gmanager-account-listitem"
extends="chrome://global/content/bindings/listbox.xml#listitem">
<content allowevents="true">
<children>
<xul:listcell>
<xul:image class="gmanager-icon"
iconsize="small"
xbl:inherits="icontype,status,newMail"/>
<xul:label xbl:inherits="value=email"/>
</xul:listcell>
<xul:listcell pack="center">
<xul:checkbox anonid="checkbox"
xbl:inherits="checked"/>
</xul:listcell>
</children>
</content>
<implementation>
<property name="email"
onget="return this.getAttribute('email');"
onset="return this.setAttribute('email', val);"/>
<property name="checked"
onget="return document.getAnonymousElementByAttribute(this, 'anonid', 'checkbox').checked;"/>
</implementation>
</binding>
<binding id="gmanager-donate-menuitem"
extends="chrome://global/content/bindings/menu.xml#menuitem">
<content>
<xul:label flex="1"
xbl:inherits="value=label"/>
<xul:spacer width="40"/>
<xul:label xbl:inherits="value=site"/>
</content>
</binding>
</bindings>